9d3c63cfaff3ef975289c786b1b98944f6efb335,kernel/kernel-impl/src/main/java/org/sakaiproject/db/impl/BasicSqlService.java,StreamWithConnection,read,#,2302

Before Change



		public int read() throws IOException
		{
			SWC_LOG.trace("read()");

			return m_stream.read();
		}

After Change


		 */
		public int read() throws IOException
		{
            if (SWC_LOG.isDebugEnabled()) {
                SWC_LOG.debug("read()");
            }
			return m_stream.read();
		}